home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 November
/
CPNL0711.ISO
/
boekhoud
/
finan
/
BADGER finance v1.0 beta 2.exe
/
xampplite
/
phpMyAdmin
/
libraries
/
transformations
/
generator.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
2003-11-18
|
856b
|
34 lines
#!/bin/bash
# $Id: generator.sh,v 2.0 2003/11/18 15:20:44 nijel Exp $
#
# Shell script that adds a new function file using a template. Should not be called directly
# but instead by template_Generator.sh and template_generator_mimetype.sh
#
#
# $1: Template
# $2: Filename
# $3: (optional) Description
if [ $# == 0 ]
then
echo "Please call template_generator.sh or template_generator_mimetype.sh instead"
echo ""
exit 65
fi
functionupper="`echo $2 | tr [:lower:] [:upper:]`"
functionlower="`echo $2 | tr [:upper:] [:lower:]`"
cat $1 | sed "s/\[ENTER_FILENAME_HERE\]/$functionupper/" | sed "s/\[enter_filename_here\]/$functionlower/" >> $2.inc.php
if [ "$3" ]
then
echo ""
echo "To do later:"
echo "cd ../../lang"
echo "./add_message.sh '\$strTransformation_${functionlower}' '$3'"
echo ""
fi
echo "Created $2.inc.php"
echo ""